home *** CD-ROM | disk | FTP | other *** search
/ Mastering Computers 3 / Mastering Computers Vol 3.iso / Win95 / Fun&Utils / CISLOGIN.TXT < prev    next >
Encoding:
Text File  |  1995-08-15  |  1.5 KB  |  46 lines

  1.   # Script for CompuServe login
  2.   #
  3.   # This RoboDUN script will log in to CompuServe and
  4.   # establish a PPP connection. It has been tested
  5.   # successfully with RoboDUN 0.61 at 28.8Kbaud.
  6.   #
  7.   # Bring up this script with an editor such as Notepad
  8.   # and then cut and paste the contents into RoboDUN's
  9.   # script editor window.
  10.   #
  11.   # Replace "your-user-ID" and "your-password" with your
  12.   # actual CompuServe user ID and password.
  13.   #
  14.   # The primary and secondary DNS addresses for CompuServe
  15.   # are 149.174.211.5 and 149.174.213.5, respectively.
  16.   #
  17.   # See the RoboDUN documentation and the documentation
  18.   # for setting up dialup connections under Windows 95
  19.   # for related implementation details. I.e., RTFM!
  20.   #
  21.   # V1.0/30 Jul 95
  22.   #   William K. Walker
  23.   #   North Valley Digital
  24.   #   P.O. Box 1941
  25.   #   Kalispell  MT  59903-1941
  26.   #   +1 (406) 257-2306 (voice, voice mail)
  27.   #   +1 (406) 752-3201 (fax)
  28.   #   71066,24
  29.   #   wkwalker@netrix.net (finger for PGP public key)
  30.  
  31.   # Send a control-C to trigger the User ID prompt
  32. Send "<ctrlc>"
  33.  
  34.   # Wait for the user ID prompt and then send the user ID and
  35.   # the command to trigger the PPP protocol. (Note that we are
  36.   # really waiting for "ID:", but CIS uses even parity at login,
  37.   # so we get some funny looking characters.)
  38. WaitFor "╔D:", 10
  39. Send "your-user-ID/GO:PPPCONNECT<cr>"
  40.  
  41.   # Wait a couple of seconds and jam out the password.
  42. Pause 2
  43. Send "your-password<cr>"
  44.  
  45. Done
  46.